All Questions
Tagged with testingtest-automation
33 questions
4votes
2answers
196views
How to check a solution method submitted by a user?
I am developing a website somewhat like leetcode, however, it will be for website testing using Selenium WebDriver.My service will provide different websites, along with various tasks that describe ...
3votes
1answer
190views
Is it necessarily a code smell to programmatically create expectation models for test cases?
I'm responsible for staging some tests, against some members, namely against the rates that are due for them. After talking about it with my peers, I see the members are a function of three other ...
20votes
5answers
2kviews
How to test variable values which differ due to floating point inaccuracy caused by different DBMS types?
I am working on a program that needs to work on floating point values that are fetched from different database types: currently we support 12 different DBMS (for example, two of them are Sqlite3 and ...
1vote
1answer
1kviews
How to Mock Test Data for complicated Integration/GUI automated tests
General overview We recently had lots of problems with automated tests in our team. Part of it was that the people designated to writing them had little experience. After this failed, we incorporated ...
3votes
2answers
1kviews
Unit tests vs Automation testing
I'm a C# developer & never worked before on either unit tests or Selenium browser test automation. For a current assignment, there is an existing Visual Studio solution that has a project that ...
0votes
2answers
930views
What does automated test pass percentage measure and how is it used in DevOps?
I'm researching DevOps metrics for school. One metric is called "automated test pass percentage." I found one article that says this metric is useful because it is good to know how often code changes ...
1vote
1answer
509views
Are automated UI tests necessary? What should be tested?
Our small team writes desktop apps using WPF + Prism. Most of the team members are not so familiar with professional software developing process. I'm trying to adopt some agile techniques to make the ...
33votes
4answers
15kviews
Should I include tests in Docker image?
When it comes to tests, I can think of two options: Put both test and application in one image. Include only application code in the image. Create a test-specific container that builds after the main ...
3votes
1answer
778views
Where should an on-team QC perform testing in a feature branching scenario?
I have searched and found a few questions talking about testing in relation to feature branching. My question is a little different. We are a scrum* team of 4 to 5 developers with a dedicated on-...
3votes
3answers
1kviews
How should I manipulate the database from within an integration test?
I have an integration test that needs to tweak some values on the database. This sort of tweak is not needed for the real application, only to setup the test scenario. The dilemma: Should I ...
9votes
6answers
4kviews
Which stage of Agile (SCRUM) should we start creating automation tests?
A little background of me - I'm a manual tester for almost 2 years within an Agile environment using SCRUM (1-2 weeks sprints). So I'm wanting to introduce automation testing in my work using ...
0votes
2answers
300views
Which kind of test should I use when dealing with External Endpoints?
My app has a large dependency on external endpoints. As time passes some of them are changing and evolving. Some of these changes are breaking changes... So far i have about 10 dependencies for a ...
8votes
2answers
3kviews
Integration tests, but how much?
A recent debate within my team made me wonder. The basic topic is that how much and what shall we cover with functional/integration tests (sure, they are not the same but the example is dummy where it ...
3votes
1answer
765views
Testing White label iOS and Android mobile apps
We are in the process of developing white label apps for iOS and Android app. I was thinking about the test strategy for handling white label apps with minimum resources. My company is targeting for ...
1vote
1answer
54views
(Mobile automative testing) what exactly should I test for?
I have been writing some automation test scripts for a mobile application. Thus far my tests are very basic, I am struggling to know exactly what to test. An example of a test I have written: Enter ...